knitr::opts_chunk$set(echo = TRUE)

R packages necessary

library("tidyverse")
library("rsconnect")
library("shiny")

load in the functions

source(file = "R/load_functions.R")

testing the functions

dna = random_dna(size = 30)

codons = mk_codons(dna = dna)

aa = dna_codons_to_aa(codons = codons)

peptide_weight(aa_string = aa)

aa_statistics(aa_string = aa)

Getting it online

rsconnect::deployApp()
#This should be the website https://www.2021-group-8.shinyapps.io/


rforbiodatascience21/Group8_Shiny documentation built on Dec. 22, 2021, 3:06 p.m.